home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #21 (1988-05-25)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #21 (1988-05-25)(Amiga User Gruppe Einzugsgebiet 4000).adf / devs / MountList < prev    next >
Text File  |  1988-01-20  |  2KB  |  83 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler    */
  4.  
  5. NEWCON:       Handler = L:Newcon-Handler
  6.        Priority = 5
  7.        StackSize = 1000
  8. #
  9.  
  10. /*  This is an example of an alternative type of non-filing device mount,
  11.     used to mount the non-buffered serial handler
  12. */
  13.  
  14. AUX:       Handler = L:Aux-Handler
  15.            Stacksize = 6000
  16.            Priority = 5
  17.        GlobVec = -1
  18. #
  19.  
  20. /* This is an example of a non-filing system mount using a handler written
  21.    in C.
  22. */
  23.  
  24. SPEAKER:   Handler = L:speak-handler
  25.            Stacksize = 6000
  26.            Priority = 5
  27.        GlobVec = -1
  28. #
  29.  
  30. /* This is an example of a mount list entry for using the recoverable 
  31.    ram disk and the fast file system.
  32. */
  33.  
  34. RD0:       Device = ramdrive.device
  35.        FileSystem = l:FastFileSystem
  36.            Unit   = 0
  37.            Flags  = 0
  38.            Surfaces  = 2
  39.            BlocksPerTrack = 11
  40.            Reserved = 2
  41.            Interleave = 0
  42.            LowCyl = 0  ;  HighCyl = 21
  43.            Buffers = 5
  44.        GlobVec = -1
  45.            BufMemType = 1
  46. #
  47.  
  48. /* Mount a 5.25" disk drive to be mounted as DF2: */
  49.  
  50. DF2:       Device = trackdisk.device
  51.            Unit   = 2
  52.            Flags  = 1
  53.            Surfaces  = 2
  54.            BlocksPerTrack = 11
  55.            Reserved = 2
  56.        PreAlloc = 11
  57.            Interleave = 0
  58.            LowCyl = 0  ;  HighCyl = 39
  59.            Buffers = 20
  60.            BufMemType = 3
  61. #
  62.  
  63. /* An example mount entry using the fast file system with a partition
  64.    of the hard disk using the 2090 disk controller.  PREP has been
  65.    used to create the first partition (up to cylinder 20).  The second
  66.    partition is MOUNTed, using the following entry:
  67.    (The hard disk is not included; this is only an example.)
  68. */
  69.  
  70. FAST:      Device = hddisk.device
  71.        FileSystem = l:FastFileSystem
  72.        Unit   = 1
  73.            Flags  = 0
  74.            Surfaces  = 4
  75.            BlocksPerTrack = 17
  76.            Reserved = 2
  77.            Interleave = 0
  78.            LowCyl = 21  ;  HighCyl = 800
  79.            Buffers = 30
  80.        GlobVec = -1
  81.            BufMemType = 1
  82. #
  83.